home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995…tember: Reference Library / Dev.CD Sep 95 RL / Dev.CD Sep 95 RL.toast / mac / Technical Documentation / develop / develop Issue 23 code / Documentary Synchronicity ƒ / Interface ƒ / Support ƒ / AERequired.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-04  |  1.1 KB  |  39 lines  |  [TEXT/KAHL]

  1. /*
  2.  * File:              AERequired.h
  3.  * Author:            Mark H. Linton
  4.  * Creation Date:     2/4/95
  5.  * Modification Date: 
  6.  * Description:       A set of routines which may be used to handle 
  7.  *                    the processing of the four required AppleEvents.
  8.  *
  9.  *                    The OAPP handler assumes you have a public
  10.  *                    function DoNewCommand defined as:
  11.  *
  12.  *                       pascal OSErr DoNewCommand(void);
  13.  *
  14.  *                    The ODOC handler assumes you have a public
  15.  *                    function DoOpenCommand defined as:
  16.  *
  17.  *                       pascal void DoOpenCommand(FSSpec *aFile);
  18.  *
  19.  *                    The PDOC handler assumes you have a public
  20.  *                    function DoPrintFile defined as:
  21.  *
  22.  *                       pascal void DoPrintFile(FSSpec *aFile);
  23.  *
  24.  *                    The QUIT handler assumes you have a public
  25.  *                    function DoQuit defined as:
  26.  *
  27.  *                       pascal OSErr DoQuit(void);
  28.  *
  29.  */
  30. #ifndef __AEREQUIRED__
  31. #define __AEREQUIRED__
  32.  
  33. #ifndef __TYPES__
  34. #include <Types.h>
  35. #endif
  36.  
  37. pascal OSErr InstallRequiredAppleEvents(void);
  38.  
  39. #endif